home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-99 Pandemic Studios
- //
- // Dark Reign II
- //
-
- CreateObjectType("objective_zepp", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("TRUE");
- Action()
- {
- ExecuteScript("zepp1", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "zepp");
- Op("%.trail", "=", "zepp");
- }
- }
- }
- }
-
-
- CreateObjectType("objective_growler", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("TRUE");
- Action()
- {
- ExecuteScript("growler1", "squad.move.tagtotrail")
- {
- Op("%.tag", "=", "growler");
- Op("%.trail", "=", "growler");
- }
- }
- }
- }
-
-